home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 12
/
Cream of the Crop 12 (Part II)
/
Cream of the Crop 12 (Part II).iso
/
OS2
/
VD08SMP.ZIP
/
usr
/
samples
/
simple
/
simple_o.m
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-02-13
|
406 b
|
18 lines
#include <pm/pm.h>
main ()
{
StdApp *application = [[StdApp alloc] init];
StdWindow *mainWindow = [[MainWindow alloc]
initWithId: 1000
andFlags: (FCF_SIZEBORDER | FCF_SHELLPOSITION |
FCF_TITLEBAR | FCF_SYSMENU | FCF_MINMAX |
FCF_TASKLIST)];
[mainWindow makeKeyAndOrderFront: nil];
[application run];
[mainWindow free];
[application free];
}